摘要:
# include <iostream># include <iomanip> //manipulator 操控者using namespace std;int main(){ int a,b; cin>>a>>b; int c=a/b; cout<<c<<endl; double e=a,f=b; 阅读全文
摘要:
#include <iostream> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */int jzj=0 阅读全文
摘要:
#include "stdafx.h" #include "iostream" #include "string" using namespace std; int main() { int n; do { cin>>n; } while(n==1);//条件为FALSE时,执行后面的语句 { co 阅读全文