C++问题,为什么会乱码?求详解
//Test.cpp:定义控制台应用程序的入口点。//#include"stdafx.h"#include<iostream>usingnamespacestd;int_...
// Test.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include<iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
char a[10], b[10];
cin >> a;
int i = 0, k = 0;
while (a[i] != '\0'){
if (a[i] >= '0'&&a[i] <= '9'){
b[k] = a[i];
k = k + 1;
}
if (a[i] == '/' || a[i] == '*' || a[i] == '-' || a[i] == '+'){
b[k] = a[i];
k = k + 1;
}
i = i + 1;
}
cout << b;
system("PAUSE");
return 0;
} 展开
//
#include "stdafx.h"
#include<iostream>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
char a[10], b[10];
cin >> a;
int i = 0, k = 0;
while (a[i] != '\0'){
if (a[i] >= '0'&&a[i] <= '9'){
b[k] = a[i];
k = k + 1;
}
if (a[i] == '/' || a[i] == '*' || a[i] == '-' || a[i] == '+'){
b[k] = a[i];
k = k + 1;
}
i = i + 1;
}
cout << b;
system("PAUSE");
return 0;
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询