题解 | 字符串输出1.0
字符串输出1.0
https://www.nowcoder.com/practice/85ef91cfe5a6417ba0e9ba6908ef1868
#include <iostream>
using namespace std;
int main() {
for(int i=0;i<3;i++){
cout<<"Welcome to ACM / ICPC!"<<endl;
}
}
// 64 位输出请用 printf("%lld")
字符串输出1.0
https://www.nowcoder.com/practice/85ef91cfe5a6417ba0e9ba6908ef1868
#include <iostream>
using namespace std;
int main() {
for(int i=0;i<3;i++){
cout<<"Welcome to ACM / ICPC!"<<endl;
}
}
// 64 位输出请用 printf("%lld")
相关推荐