Archive
How can I make my laptop a wi-fi router? Is it possible?
Read moreWhat is wrong if adobe keeps crashing? I have 4GB RAM and 64bit OS.
Read moreWould you recommend a proxy server at a homeinternet connection? Is it safe?
Read moreWhy does this start up error message continue to appear even after I re-installed my Microsoft Office?
I even followed theinstructions in help manual step by step but this error keeps showing up.
Cannot display the template add in template is not valid template name.
Read moreWhat should I do? My PC flashed a "Windows rootsystem 32hal.dll error message." I tried rebooting and doing safe mode to no avail. Would I be able to recover my files?
Read moreHello
I create a simple program that need to rename a bunch of files
-
#include <stdio.h>
- int main(){
- int count;
- for(count = 1; count <= 95; count++){
- if(count >= 10){
- system("rename "C:\wamp\www\anime\kenshin\Rurouni Kenshin - %d.mkv" "%d.mkv"", count, count);
- }
- /* For the episodes that have 0 before the number e.g 01..09 */
- system("rename "C:\wamp\www\anime\kenshin\Rurouni Kenshin - %d%d.mkv" "%d.mkv"", 0, count, count);
- }
- return 0;
- }
I always come up on this error "too many actual parameters". I also receive "The system cannot find the file specified."
Can someone help a newbie out?
Read moreHello,
I recently bought a RealTL8188CU wireless LAN adapter.
It works perfectly in Windows but in Ubuntu Linux it detects the network but does not connect.
What could be the problem?
Anyone could help me?
Thanks.
Read moreI have to import a file of names and then be able to sort them alphabetically I've managed to import the file using the following code
-
Import java.io.*;
- Public class Name{
- Public static void main(String args)throws IOException{
- String contents;
- File f = new File("names.txt");
- FileReader fr = new FileReader(f);
- BufferedReader br = new BufferedReader(fr);
- While (br.ready()){
- Contents = br.readLine();
- System.out.println(contents);
- }
- fr.close();
- }
- }
Also I have managed to sort them alphabetically when manually entering the list of names as shown in the code below
-
Public class DSA1
- {
- Public static void main(String[ ] args)
- {
- String[ ] names = {"James", "Anne", "Bill", "Maria", "Bob", "Jill", "Elvis", "Carol", "Dennis", "Mandy", "Steven", "Sian", "Harry", "Linda"};
- SortStringExchange (names);
- For (... Read more
I am getting this error with when I compile. I have to turn this assignment in a few hours. Here is the code:
error message(s)
untitled.cpp:34: error: invalid types ‘int[int]’ for array subscript
untitled.cpp:36: error: invalid types ‘int[int]’ for array subscript
// A basic Casear Cipher Encrytion Device.
include <iostream>
include <iomanip>
using namespace std;
define RINGLEN 62
-
// NUM OF CHARS IN ALLOWED CHARACTER SET.
int main () { int i=0; // index variables int j=0; char ring[RINGLEN+1]="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; int key = 4; const int size = 1000; char word[size+1];
-
cout << "Please insert the message you would like to encrypt: ";
- cin >> word;
- for (int... Read more
Everyday I work for a long time with my favorite computer. But after working about approximately two hours my mouse is not working at all. Then I am forced to restart my PC. How can i get rid of this problem?
Read more