简单的Java,Python,C,C++

 Java 语言
//package main
//注意不要添加包名称,否则会报错。 import java.io.*;
import java.util.*;
cin.hasNext();
cin.hasNextLine();
cin.hasNextBigDecimal();
cin.hasNextBigInteger();
cin.hasNextBoolean();
cin.hasNextByte();
cin.hasNextDouble();
cin.hasNextInt();
cin.hasNextLong();
public class Test {
public static void main(String args[])
{
Scanner cin = new Scanner(System.in);
int a, b;
while(cin.hasNextInt())//判断cin中是否还有值
{
a = cin.nextInt();
b = cin.nextInt();
System.out.println(a + b);
}
}
}
public static void main(String args[])
{
int x=1;
int y=~1;
System.out.println(Integer.toBinaryString(x));//1
System.out.println(Integer.toBinaryString(y));//1111111111111111111111111110
System.out.println(y);//-2
}
* 测试3:从文本文件中读取数据
*/
static void testExample03(){
//1、在内存中打开要读取文件的字符流对象
try {
Reader reader=new FileReader("e:/ReadMe.log"); //循环读取,一次就读一个
int ch=reader.read();
StringBuffer buffer=new StringBuffer();
while(ch!=-1){ //读取成功
buffer.append((char)ch);
ch=reader.read();
}
System.out.println(buffer.toString());
//3、关闭流
reader.close();
} catch (FileNotFoundException e) {
System.out.println("要读取的文件不存在:"+e.getMessage());
} catch (IOException e) {
System.out.println("文件读取错误:"+e.getMessage());
}
}
/**
* 测试4:向文本文件中写入数据
*/
static void testExample04(){
System.out.println("请输入内容:");
String text=input.next();
try {
//1、打开流
Writer w=new FileWriter("e:/测试.txt",true);
//2、写入内容
w.write(text);
//3、关闭流
w.close();
} catch (IOException e) {
System.out.println("文件写入错误:"+e.getMessage());
}
}
#!/usr/bin/env python
# coding=utf-8
# Python使用的是2.7,缩进可以使用tab、4个空格或2个空格,但是只能任选其中一种,不能多种混用
while 1:
a=[]
s = raw_input()
# raw_input()里面不要有任何提示信息
if s != "":
for x in s.split():
a.append(int(x)) print sum(a)
else:
break //C语言
#include <iostream.h>    //数据流输入/输出
#include <math.h>      //定义数学函数
#include <stdio.h>      //定义输入/输出函数
#include <stdlib.h>     //定义杂项函数及内存分配函数
#include <string.h>     //字符串处理
#include <stdio.h>
int main()
{
int a, b;
while(scanf("%d%d", &a, &b) != EOF)
printf("%d\n", a + b);
system("pause");
} //C++语言
#include <iostream>
using namespace std;
int main()
{
int a, b;
while(cin>> a >> b)
cout << a + b << endl;
return 0;
} 介绍1:Java的输入控制
测试2:测试输出x=1 和y=~1
测试3:从文本文件中读取数据
测试4:向文本文件中写入数据
上一篇:DFTX 笔试


下一篇:Java keyword具体解释