码迷,mamicode.com
首页 >  
搜索关键字:osd out    ( 36245个结果
打印录入数据
import java.util.Scanner; //输入并打印 public class ShuRuDaYin { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.p ...
分类:其他好文   时间:2021-04-30 11:58:37    阅读次数:0
打印三位数,十位为2
package com.itheima.demo01.arr; public class ShiWeiWeiTwo { public static void main(String[] args) { for (int i = 100; i < 1000; i++) { if (i/10%10==2 ...
分类:其他好文   时间:2021-04-30 11:58:22    阅读次数:0
指针--多重指针作形参(**)
今天遇到这样一个问题: 有类似如下的结构体 struct everythingtest { int a; double b,c,d; }; 主函数中已经定义了该类型的一个指针,现需要在函数中生成everythingtest类型的数组,以保存、修改相关数据。但是之后需要将该数组返回,以作他用。 其实通 ...
分类:其他好文   时间:2021-04-29 12:12:22    阅读次数:0
AppendTargetFrameworkToOutputPath
<PropertyGroup> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntime ...
分类:移动开发   时间:2021-04-29 12:04:19    阅读次数:0
C# WinForm开发系列 - ToolBar/OutlookBar/Tab/Wizard
分享一个 C# Winfrom 下的 OutlookBar 控件的使用 outlookbar 实现 包含类似于Outlook 2003中左侧导航栏, IE7中Tab, 以及向导控件与可任意拖动的工具栏控件(文章及相关代码搜集自网络,仅供学习参考,版权属于原作者! ). 1.OutlookBar Vb ...
分类:Windows程序   时间:2021-04-28 12:15:50    阅读次数:0
10以内的数字的四则运算
#include <iostream>#include <cstdlib>#include <ctime>using namespace std;int main(){ int num1,num2,op,result1,result2; //num1,num2:操作数;op:运算符;result1, ...
分类:其他好文   时间:2021-04-28 12:11:52    阅读次数:0
jvm源码解读--12 invokspecial指令的解读
先看代码 package com.zyt.jvmbook; public class Girl extends Person{ public Girl() { int a; } @Override public void sayHello() { System.out.println("girl s ...
分类:其他好文   时间:2021-04-28 11:53:27    阅读次数:0
2021团体程序设计天梯赛 L1-6 吉老师的回归
思路: 水题,略过 Tip: 无 #include <bits/stdc++.h> using namespace std; int main() { int n, t, num = 0; string now; cin >> n >> t; getchar(); for (int i = 1; i ...
分类:其他好文   时间:2021-04-27 15:16:28    阅读次数:0
c++ (文件读写操作)
文件读写操作「c++」 #include <fstream> void test01() { //ofstream ofs("./test.txt",ios::out | ios::trunc); //后期指定打开方式 ofstream ofs; ofs.open("./test.txt",ios: ...
分类:编程语言   时间:2021-04-27 15:05:25    阅读次数:0
C++(自带异常,使用示例)
C++(自带异常,使用示例) #define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> //系统提供标准异常 #include <stdexcept> using namespace std; class Person ...
分类:编程语言   时间:2021-04-27 14:52:17    阅读次数:0
36245条   上一页 1 ... 23 24 25 26 27 ... 3625 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!